type github.com/vmihailenco/bufpool.readOp

6 uses

	github.com/vmihailenco/bufpool (current package)
		buffer.go#L24: 	lastRead readOp // last read operation, so that Unread* can work correctly.
		buffer.go#L31: type readOp int8
		buffer.go#L36: 	opRead      readOp = -1 // Any other read operation.
		buffer.go#L37: 	opInvalid   readOp = 0  // Non-read operation.
		buffer.go#L38: 	opReadRune1 readOp = 1  // Read rune of size 1.
		buffer.go#L302: 	b.lastRead = readOp(n)